home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Special 21
/
AMIGAplus Sonderheft 21 (1999)(ICP)(DE)[!].iso
/
PublicDomain
/
Anwendungen
/
RecentScript
/
Plugins
/
RecentScript.intui
next >
Wrap
Text File
|
1999-08-23
|
1KB
|
54 lines
/*****
$VER: RecentScript IntuiNews PlugIn 0.4 (18.4.98) ©Arndt van der Molen
RecentScript PlugIn for news/email reader IntuiNews.
Starts the MUIRexx application 'RecentScript' with the
currently viewed article or all selected articles.
Installation:
Add following line(s) to 'ums.config'
( IntuiNews.Rexx
"(Article|Message)Window F9 MUIRexx:RecentScript/Plugins/RecentScript.intui\n"
)
whereas the function key number is the first unused in your
UMS configuration. Note: The maximum allowed number is 10.
Known 'Bugs':
- At multiselection the first line (and therefore the first
archive) of all additional selections is added without a
newline and is not recognized by RecentScript.
- Temporary file will not be deleted
*****/
OPTIONS RESULTS
status
IF RESULT = "MESSAGE"
THEN DO
getmsgnum
msgs = RESULT
END
ELSE
IF RESULT = "ARTICLE"
THEN DO
getselmsgnums
IF RESULT = "RESULT" THEN EXIT 5
msgs = RESULT
END
ELSE EXIT 5
'savemsgbody' msgs 'TO T:RS.temp'
PRAGMA("STACK", 15000)
ADDRESS COMMAND 'run <>NIL: MUIRexx:MUIRexx "MUIRexx:RecentScript/RecentScript.rexx T:RS.temp" PORT RECENTSCRIPT'